From df3053b5169ba7f9adfb2fa635050ef8b64933fa Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 1 Aug 2012 18:59:19 -0700 Subject: [PATCH] Avoid needless autoheader after autogen.sh. * src/stamp-h.in: Remove from bzr repository; no longer needed there. * .bzrignore: Add it. * autogen.sh: Create it. --- .bzrignore | 1 + ChangeLog | 7 +++++++ autogen.sh | 4 ++++ src/stamp-h.in | 1 - 4 files changed, 12 insertions(+), 1 deletion(-) delete mode 100644 src/stamp-h.in diff --git a/.bzrignore b/.bzrignore index 1e45218b503..b469f9e5434 100644 --- a/.bzrignore +++ b/.bzrignore @@ -143,6 +143,7 @@ src/epaths.h src/gdb.ini src/prefix-args* src/stamp-oldxmenu +src/stamp-h.in src/temacs test/indent/*.new +* diff --git a/ChangeLog b/ChangeLog index 6a18c536f61..aeacf521289 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-08-02 Paul Eggert + + Avoid needless autoheader after autogen.sh. + * src/stamp-h.in: Remove from bzr repository; no longer needed there. + * .bzrignore: Add it. + * autogen.sh: Create it. + 2012-08-01 Glenn Morris * configure.ac (DOS_NT, MSDOS): New system type templates. diff --git a/autogen.sh b/autogen.sh index 0c92047e469..cabaaf014a8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -209,6 +209,10 @@ echo "Your system has the required tools, running autoreconf..." ## Let autoreconf figure out what, if anything, needs doing. autoreconf -i -I m4 || exit $? +## Create a timestamp, so that './autogen.sh; make' doesn't +## cause 'make' to needlessly run 'autoheader'. +echo timestamp > src/stamp-h.in || exit + echo "You can now run \`./configure'." exit 0 diff --git a/src/stamp-h.in b/src/stamp-h.in deleted file mode 100644 index 9788f70238c..00000000000 --- a/src/stamp-h.in +++ /dev/null @@ -1 +0,0 @@ -timestamp -- 2.30.2